home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / netinclude / errno.h < prev    next >
C/C++ Source or Header  |  1994-05-02  |  474b  |  27 lines

  1. #ifndef ERRNO_H
  2. #define ERRNO_H
  3. /*
  4.  * $Id: errno.h,v 1.4 1994/05/02 20:52:01 jraja Exp $
  5.  *
  6.  * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  7.  *                  Helsinki University of Technology, Finland.
  8.  *                    All rights reserved.
  9.  *
  10.  * errno.h -- errno.h for network programs
  11.  *
  12.  */
  13.  
  14. #include <sys/errno.h>
  15.  
  16. extern int errno;
  17.  
  18. extern int _OSERR;
  19.  
  20. #define __sys_nerr 80
  21.  
  22. #ifndef STRICT_ANSI
  23. #define sys_nerr __sys_nerr
  24. #endif
  25.  
  26. #endif /* ERRNO_H */
  27.